home *** CD-ROM | disk | FTP | other *** search
/ MacWorld 1998 May / Macworld (1998-05).dmg / Serious Demos / TeamWave 3.0 / TeamWave Server / TeamWave Server.rsrc / TEXT_18_word.txt < prev    next >
Text File  |  1998-02-13  |  4KB  |  136 lines

  1. # word.tcl --
  2. #
  3. # This file defines various procedures for computing word boundaries
  4. # in strings.  This file is primarily needed so Tk text and entry
  5. # widgets behave properly for different platforms.
  6. #
  7. # Copyright (c) 1996 by Sun Microsystems, Inc.
  8. #
  9. # See the file "license.terms" for information on usage and redistribution
  10. # of this file, and for a DISCLAIMER OF ALL WARRANTIES.
  11. # SCCS: @(#) word.tcl 1.2 96/11/20 14:07:22
  12. # See the file "license.terms" for information on usage and redistribution
  13. # of this file, and for a DISCLAIMER OF ALL WARRANTIES.
  14. #
  15.  
  16. # The following variables are used to determine which characters are
  17. # interpreted as white space.  
  18.  
  19. if {$tcl_platform(platform) == "windows"} {
  20.     # Windows style - any but space, tab, or newline
  21.     set tcl_wordchars "\[^ \t\n\]"
  22.     set tcl_nonwordchars "\[ \t\n\]"
  23. } else {
  24.     # Motif style - any number, letter, or underscore
  25.     set tcl_wordchars {[a-zA-Z0-9_]}
  26.     set tcl_nonwordchars {[^a-zA-Z0-9_]}
  27. }
  28.  
  29. # tcl_wordBreakAfter --
  30. #
  31. # This procedure returns the index of the first word boundary
  32. # after the starting point in the given string, or -1 if there
  33. # are no more boundaries in the given string.  The index returned refers
  34. # to the first character of the pair that comprises a boundary.
  35. #
  36. # Arguments:
  37. # str -        String to search.
  38. # start -    Index into string specifying starting point.
  39.  
  40. proc tcl_wordBreakAfter {str start} {
  41.     global tcl_nonwordchars tcl_wordchars
  42.     set str [string range $str $start end]
  43.     if [regexp -indices "$tcl_wordchars$tcl_nonwordchars|$tcl_nonwordchars$tcl_wordchars" $str result] {
  44.     return [expr [lindex $result 1] + $start]
  45.     }
  46.     return -1
  47. }
  48.  
  49. # tcl_wordBreakBefore --
  50. #
  51. # This procedure returns the index of the first word boundary
  52. # before the starting point in the given string, or -1 if there
  53. # are no more boundaries in the given string.  The index returned
  54. # refers to the second character of the pair that comprises a boundary.
  55. #
  56. # Arguments:
  57. # str -        String to search.
  58. # start -    Index into string specifying starting point.
  59.  
  60. proc tcl_wordBreakBefore {str start} {
  61.     global tcl_nonwordchars tcl_wordchars
  62.     if {[string compare $start end] == 0} {
  63.     set start [string length $str]
  64.     }
  65.     if [regexp -indices "^.*($tcl_wordchars$tcl_nonwordchars|$tcl_nonwordchars$tcl_wordchars)" [string range $str 0 $start] result] {
  66.     return [lindex $result 1]
  67.     }
  68.     return -1
  69. }
  70.  
  71. # tcl_endOfWord --
  72. #
  73. # This procedure returns the index of the first end-of-word location
  74. # after a starting index in the given string.  An end-of-word location
  75. # is defined to be the first whitespace character following the first
  76. # non-whitespace character after the starting point.  Returns -1 if
  77. # there are no more words after the starting point.
  78. #
  79. # Arguments:
  80. # str -        String to search.
  81. # start -    Index into string specifying starting point.
  82.  
  83. proc tcl_endOfWord {str start} {
  84.     global tcl_nonwordchars tcl_wordchars
  85.     if [regexp -indices "$tcl_nonwordchars*$tcl_wordchars+$tcl_nonwordchars" \
  86.         [string range $str $start end] result] {
  87.     return [expr [lindex $result 1] + $start]
  88.     }
  89.     return -1
  90. }
  91.  
  92. # tcl_startOfNextWord --
  93. #
  94. # This procedure returns the index of the first start-of-word location
  95. # after a starting index in the given string.  A start-of-word
  96. # location is defined to be a non-whitespace character following a
  97. # whitespace character.  Returns -1 if there are no more start-of-word
  98. # locations after the starting point.
  99. #
  100. # Arguments:
  101. # str -        String to search.
  102. # start -    Index into string specifying starting point.
  103.  
  104. proc tcl_startOfNextWord {str start} {
  105.     global tcl_nonwordchars tcl_wordchars
  106.     if [regexp -indices "$tcl_wordchars*$tcl_nonwordchars+$tcl_wordchars" \
  107.         [string range $str $start end] result] {
  108.     return [expr [lindex $result 1] + $start]
  109.     }
  110.     return -1
  111. }
  112.  
  113. # tcl_startOfPreviousWord --
  114. #
  115. # This procedure returns the index of the first start-of-word location
  116. # before a starting index in the given string.
  117. #
  118. # Arguments:
  119. # str -        String to search.
  120. # start -    Index into string specifying starting point.
  121.  
  122. proc tcl_startOfPreviousWord {str start} {
  123.     global tcl_nonwordchars tcl_wordchars
  124.     if {[string compare $start end] == 0} {
  125.     set start [string length $str]
  126.     }
  127.     if [regexp -indices \
  128.         "$tcl_nonwordchars*($tcl_wordchars+)$tcl_nonwordchars*\$" \
  129.         [string range $str 0 [expr $start - 1]] result word] {
  130.     return [lindex $word 0]
  131.     }
  132.     return -1
  133. }
  134.